b1ab8cabb5d0e71a79bdd5cbabfc426658beaf03,src/main/java/il/org/spartan/plugin/preferences/revision/XMLSpartan.java,XMLSpartan,updateEnabledTippers,#IProject#Set#,99
Before Change
if (ll != null)
for (int j = 0; j < ll.getLength(); ++j) {
final Element ee = (Element) ll.item(j);
if (es.contains(ee.getAttribute(TIPPER_ID)))
ee.setAttribute(ENABLED, "true");
else
ee.setAttribute(ENABLED, "false");
After Change
if (ll != null)
for (int j = 0; j < ll.getLength(); ++j) {
final Element ee = (Element) ll.item(j);
final String nameByID = Toolbox.Tables.TipperIDNameTranslationTable.get(ee.getAttribute(TIPPER_ID));
if (nameByID != null && es.contains(nameByID))
ee.setAttribute(ENABLED, "true");
else
ee.setAttribute(ENABLED, "false");